'Declaration
Public Overloads Function CreateGdPictureImageFromByteArray( _ ByVal Data() As Byte _ ) As Integer
public int CreateGdPictureImageFromByteArray( byte[] Data )
public function CreateGdPictureImageFromByteArray( Data: Bytearray of ): Integer;
public function CreateGdPictureImageFromByteArray( Data : byte[] ) : int;
public: int CreateGdPictureImageFromByteArray( byte[]* Data )
public: int CreateGdPictureImageFromByteArray( array<byte>^ Data )
Parameters
- Data
- The image data stored in the array of bytes. This object must be initialized with the proper image data and it must be disposed of by the user as well.
Return Value
Be aware that you need to release the image with the ReleaseGdPictureImage method after being used.